home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / hsweb_location.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  73 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@nessus.org>
  3. #
  4. #
  5. # See the Nessus Scripts License for details
  6. #
  7.  
  8. if(description)
  9. {
  10.  script_id(10606);
  11.  script_bugtraq_id(2336);
  12.  script_cve_id("CAN-2001-0200");
  13.  script_version ("$Revision: 1.9 $");
  14.  name["english"] = "HSWeb document path";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. It is possible to request the physical location of the remote
  19. web root by requesting the folder :
  20.  
  21.     /cgi
  22.  
  23. An attacker may use this flaw to gain more knowledge about this
  24. host.
  25.  
  26. Solution : Turn off directory browsing if your server allows it
  27. Risk factor : Low";
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "Retrieve the real path using /cgi";
  32.  
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_GATHER_INFO);
  36.  
  37.   script_copyright(english:"This script is Copyright (C) 2001 Renaud Deraison");
  38.  family["english"] = "CGI abuses";
  39.  family["francais"] = "Abus de CGI";
  40.  script_family(english:family["english"], francais:family["francais"]);
  41.  script_dependencie("find_service.nes");
  42.  script_require_ports("Services/www", 80);
  43.  exit(0);
  44. }
  45.  
  46. #
  47. # The script code starts here
  48. #
  49.  
  50. include("http_func.inc");
  51.  
  52. port = get_http_port(default:80);
  53.  
  54.  
  55. if(get_port_state(port))
  56. {
  57.   req = http_get(item:"/cgi", port:port);
  58.   soc = http_open_socket(port);
  59.   if(soc)
  60.   {
  61.    send(socket:soc, data:req);
  62.    result = http_recv(socket:soc);
  63.    http_close_socket(soc);
  64.    
  65.    if("Directory listing of" >< result)
  66.    {
  67.     security_warning(port);
  68.     exit(0);
  69.    }
  70.   }
  71. }
  72.  
  73.